home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / cpphtp2 / code.jar / code / ch15 / fig15_21.txt < prev    next >
Text File  |  1998-02-27  |  335b  |  14 lines

  1. 10 rem   determine and print the sum of two integers
  2. 32  15 rem   
  3. 33  20 rem   input the two integers 
  4. 34  30 input a
  5. 35  40 input b
  6. 36  45 rem
  7. 37  50 rem   add integers and store result in c
  8. 38  60 let c = a + b
  9. 39  65 rem
  10. 40  70 rem   print the result
  11. 41  80 print c
  12. 42  90 rem   terminate program execution
  13. 43  99 end
  14.